home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / ici / ici.cpi / conf-next.h < prev    next >
C/C++ Source or Header  |  1994-10-27  |  630b  |  22 lines

  1. #ifndef ICI_CONF_H
  2. #define ICI_CONF_H
  3.  
  4. #define    BSD    43
  5.  
  6. #undef    NOMATH        /* Trig and etc. */
  7. #undef    NOWIN        /* Lib curses based screen handling. */
  8. #define    NODB        /* Simple ascii file based data base. */
  9. #define    NOTRACE        /* For debugging. */
  10. #undef    NOWAITFOR    /* Requires select() or similar system primitive. */
  11. #undef    NOSYSTEM    /* Command interpreter (shell) escape. */
  12. #undef    NOPIPES        /* Requires popen(). */
  13. #undef    NOSKT        /* BSD style network interface. */
  14. #undef    NOSYSCALL    /* A few UNIX style system calls. */
  15.  
  16. /*
  17.  * Mentioned in the version string.
  18.  */
  19. #define    CONFIG_STR    "math win waitfor system pipes skt"
  20.  
  21. #endif /*ICI_CONF_H*/
  22.